Skip to main content
Version: 1.0.2

Create subscription

The Create Subscription API enables to create subscription for selected events which provides subscription ID upon successful creation.

Method: POST

{{URL}}/jsonrpc

Headers

NameValue
Content-Typeapplication/json

Example

Payload Parameters
ParameterDescription

name

Mandatory

String

Name of the subscription

Sample value: "DocTest"

callbackUrl

Mandatory

String

Url where notifications are posted

Sample value: "http://localhost:4444/event"

events

Mandatory

Array

Transaction.NEW

Optional

String

Event - transaction created

Transaction.UPDATE

Optional

String

Event - transaction status updated

Account.UPDATE

Optional

String

Event - account status updated

Account.NEW

Optional

String

Event - new account created

groupId

Mandatory

Array

200146575944771

Mandatory

String

Account number of the subscriber

remarks

Optional

String

Description if required

Sample value: "Test"


curl --location '' \
--header 'Content-Type: application/json' \
--data '{"name":"DocTest","callbackUrl":"http://localhost:4444/event","events":["Transaction.NEW","Transaction.UPDATE","Account.UPDATE","Account.NEW"],"groupId":["200146575944771"],"remarks":"Test"}'

Body


{
"name": "DocTest",
"callbackUrl": "http://localhost:4444/event",
"events": [
"Transaction.NEW",
"Transaction.UPDATE",
"Account.UPDATE",
"Account.NEW"
],
"groupId": [
"200146575944771"
],
"remarks": "Test"
}

Response: 200

Payload Parameters
ParameterDescription

response

String

Response Message

Sample value: "Subscription created"

subscriptionId

String

Generated Unique Subscription ID

Sample value: "SUB162948"


{
"response": "Subscription created",
"subscriptionId": "SUB162948"
}